home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / EDITOR / FUGUE_3.ARJ / WF.C < prev    next >
Text File  |  1990-11-05  |  35KB  |  734 lines

  1. .f3                              - # -              Appendix C - Examples & Tips
  2. .rm70
  3. .mt5
  4. .mb5
  5. .pl66
  6. .tc
  7. .tc C. EXAMPLES & TIPS ....................................#
  8. APPENDIX C   EXAMPLES & TIPS
  9.  
  10. This appendix consists of examples of various Word Fugue features.
  11. They are in addition to the examples distributed throughout the
  12. manual, and in the tutorial. The examples are intended to give you
  13. ideas for using Word Fugue in your own work or to help you with a
  14. particular application. Because Word Fugue users often have questions
  15. relating to merge printing, many of these examples are related to
  16. merge printing applications.
  17.  
  18. .tc    Changing Page Length and Line Height ...............#
  19. Changing Page Length and Line Height
  20.  
  21. Suppose you are printing a document for readers with visual
  22. impairment. You plan to use double width characters on paper that is
  23. 14 inches long. You also plan to increase the line height in order to
  24. increase the separation between lines.
  25.  
  26. By default, Word Fugue assumes that you are using American standard
  27. 8½-by-11-inch paper with 6 lines of text to the inch. This example
  28. shows you how to set up a document for paper 14 lines long, with 4
  29. lines per inch.
  30.  
  31. First, you must tell Word fugue of the new page length. At the default
  32. of 6 lines per inch, 14 inch paper is 6 * 14 = 84 lines. So in order
  33. to tell Word Fugue that you are using 14 inch paper, use the .PL
  34. command to set the page length to 84.
  35.  
  36.         .PL 84
  37.  
  38. Now, use the .LH command to set the appropriate line height, and Word
  39. Fugue will calculate the correct number of lines per page at this
  40. height. You must have set the page length first, or Word Fugue will
  41. assume that you are using 66 line paper. The default line step is
  42. measured in 1/48ths of an inch - if your printer does not use this,
  43. then you must determine the appropriate step and number. At 4 lines
  44. per inch, you need 12/48ths of an inch per line:
  45.  
  46.         .LH 12    
  47.         .LH 18/72            if your printer uses 1/72nds of an inch
  48.         .LH 54/216           if your printer uses 1/216ths of an inch
  49.  
  50. Word Fugue will calculate the new number of lines that will fit on a
  51. page - 84/12*8 = 56 lines. (Or 14*4 = 56!). Subtract of the margins
  52. from the new page length to determine how many lines in the text body:
  53. 56-5-4=47. Thus there will be 47 text lines to the page. (Please note
  54. that this is not a figure for the .PL command.)
  55.  
  56. If you are using double width characters, you should change the right
  57. margin to 33 to fit on the line (.RM33) and you should change the page
  58. ofset to 5 (.PO5) since these are measured in characters.
  59.  
  60. .CP6
  61. .tc    Selective Printing of Page Numbers .................#
  62. Selective Printing of Page Numbers
  63.  
  64. If you are printing a manual such as this, you probably do not want
  65. page numbers on the title page, you want to use lower case roman
  66. numerals for the table of contents, and ordinary numbers starting from
  67. one at the first page of the first chapter. The following example
  68. shows you how to do this.
  69.  
  70.  
  71.    ┌─────────────────────────────────────────────────────────────────┐
  72.    │            .po10                                                │
  73.    │            .rm70                                                │
  74.    │            .mt5                                                 │
  75.    │            .mb4                                                 │
  76.    │            .pl66                                                │
  77.    │                                                                 │
  78.    │                 Word Fugue                                      │
  79.    │                                                                 │
  80.    │                 User's Guide                                    │
  81.    │                                                                 │
  82.    │            .pa                                                  │
  83.    │            --------------------- (page break) ---------------   │
  84.    │            .H1        WORD FUGUE USERS GUIDE                    │
  85.    │            .H2        TABLE OF CONTENTS                         │
  86.    │            .h3 ──────────────────────────────────────────────   │
  87.    │            .PA                                                  │
  88.    │            .f1                                                  │
  89.    │            .f2 ──────────────────────────────────────────────   │
  90.    │            .f3               - # -                              │
  91.    │ A ─────────.pn1                                                 │
  92.    │ B ─────────.pt r                                                │
  93.    │ C ─────────.fiwf.toc  contains the text for table of contents   │
  94.    │            .pa                                                  │
  95.    │            --------------------- (page break) ---------------   │
  96.    │            .H1        WORD FUGUE USERS GUIDE                    │
  97.    │            .h2 ──────────────────────────────────────────────   │
  98.    │ D ─────────.H3                                                  │
  99.    │ E ─────────.pn1                                                 │
  100.    │ F ─────────.pt n                                                │
  101.    │                                                                 │
  102.    │                        [Text]                                   │
  103.    │                                                                 │
  104.    └─────────────────────────────────────────────────────────────────┘
  105.  
  106.  
  107.  
  108. For the sample book above, printing starts without page numbers on the
  109. title page. (This is the default, so the .OP command is not needed).
  110. The .PA command starts a new page for the table of contents. The
  111. footing with the # will cause page numbers to be printed from then on.
  112. However, the first page of the table of contents is physically the
  113. second page of the document, and Word Fugue will have set the page
  114. number to 2. Thus the line labeled A (.PN1) resets the page number to
  115. 1 for the table of contents.
  116.  
  117. We want lowercase roman Numerals for the contents, so line B (.PT r)
  118. will set page numbers to be printed in lower case roman numerals. The
  119. table of contents is held in a separate file WF.TOC and so is copied
  120. in using the .FI file include command at line C.
  121.  
  122. At the end of the table of contents we take a new page and change the
  123. heading. Line D blanks heading line 3. Line E resets the page number
  124. back to 1 again for the first chapter. Line F changes the page number
  125. type back to ordinary numbers.
  126.  
  127. .tc    Printing the First Page on Letterhead ..............#
  128. Printing the First Page of a Document on Letterhead
  129.  
  130. This is the format for the first page of an organization's formal
  131. correspondence on preprinted letterhead.
  132.  
  133.  
  134.       ┌────────────────────────────────────────────────────────────┐
  135.       │                                                            │
  136.       │ ..STATIONARY FORMAT                                        │
  137.       │ ..FIRST PAGE                                               │
  138.       │ .RRL    !        !       !       !                   R     │
  139.       │ .MT10                                                      │
  140.       │ .MB5                                                       │
  141.       │ .PO14                                                      │
  142.       │                                           {.@D8}           │
  143.       └────────────────────────────────────────────────────────────┘
  144.  
  145. The large top margin of 10 accomodates the preprinted letterhead. The
  146. {.@D8} causes the current date to be printed in the format dd month yyyy.
  147.  
  148. The letter should should be printed with Manual Paper Feed turned on
  149. to cause the print to pause between pages so you can swap paper for
  150. the following pages (unless you have a special printer that supports
  151. several bins of single sheets - in which case you need to define a
  152. print command to switch bins). The example below shows how to print
  153. the rest of the letter.
  154.  
  155.  
  156.       ┌────────────────────────────────────────────────────────────┐
  157.       │                                                            │
  158.       │ ..FOLLOWING PAGES                                          │
  159.       │ .MT5                                                       │
  160.       │ .MB4                                                       │
  161.       │ .PG                                                        │
  162.       │ .PC 1                                                      │
  163.       │                                                            │
  164.       └────────────────────────────────────────────────────────────┘
  165.  
  166.  
  167. The .PG command turns on printing of page numbers in the default
  168. column at the foot of the page. The .PC 1 places the page number in
  169. column 1.
  170.  
  171.     TIP You could set up this format (or your own variation) as a
  172.     separate document, and whenever you want to print such a letter,
  173.     use the file read command (Ctrl K R) to insert the document into
  174.     the letter.
  175.  
  176. .cp10
  177. .tc    Printing a Standard Business Envelope ..............#
  178. Printing a Standard Business Envelope
  179.  
  180. Assuming your printer can handle envelopes, then to print one you need
  181. only consider it as a document with a short page length and special
  182. margins.
  183.  
  184. The format shown below is suitable for a standard 9½-by-4-inch
  185. business envelope, printing 10 characters per inch.
  186.  
  187.  
  188.        ┌───────────────────────────────────────────────────────────┐
  189.        │                                                           │
  190.        │ .PA             {begin envelope on new page}              │
  191.        │ .PL24           {standard size @ 6 lines per inch}        │
  192.        │ .MT12           {start printing 12 lines from top}        │
  193.        │ .MB0            {eliminate bottom margin}                 │
  194.        │ .PO40           {begin printing 40 spaces from left edge} │
  195.        │                                                           │
  196.        └───────────────────────────────────────────────────────────┘
  197.  
  198. If you use different size envelopes, change the dot commands
  199. accordingly.
  200.  
  201.     TIP You could set up this format (or your own variation) as a
  202.     separate document, and whenever you want to print an envelope,
  203.     use the file read command (Ctrl K R) to insert the format into
  204.     the document.
  205.  
  206. .tc    A Typical Master Document for Merge Printing .......#
  207. A Typical Master Document for Merge Printing
  208.  
  209. The following is a sample master document for a form letter that
  210. includes variable names and merge print dot commands:
  211.  
  212.      ┌──────────────────────────────────────────────────────────┐
  213.      │  .df names.dat                                           │
  214.      │  .rv name,greeting,address1,address2                     │
  215.      │  ..make sure that there is enough room for letterhead    │
  216.      │  .mt 20                                                  │
  217.      │                                                          │
  218.      │  {.D8}                                                   │
  219.      │                                                          │
  220.      │  &name&                                                  │
  221.      │  &address1&                                              │
  222.      │  &address2&                                              │
  223.      │                                                          │
  224.      │  Dear &greeting&,                                        │
  225.      │                                                          │
  226.      │  thank you for your recent enquiry. ........             │
  227.      │                                                          │
  228.      │  yours sincerely                                         │
  229.      │                                                          │
  230.      │  fred Nurk                                               │
  231.      │  .pa                                                     │
  232.      └──────────────────────────────────────────────────────────┘
  233.  
  234. The four variables in the form letter are surrounded by ampersands (&).
  235. The date in NAMES.DAT might look like this:
  236.  
  237.  
  238.      ┌───────────────────────────────────────────────────────────┐
  239.      │  Joe Bloggs,Mr. Bloggs,43 Oak drive,Acorn city  SA 5871   │
  240.      │  Jane Smith,Ms Smith,7 Main St,The Village   TAS 7766     │
  241.      │  Cecil Cedric,Cecil,9 Rose ave, Melbourne   VIC   3021    │
  242.      └───────────────────────────────────────────────────────────┘
  243.  
  244.  
  245. .tc    Merge Printing Envelopes for a Mass Mailing ........#
  246. Merge Printing Envelopes for a Mass Mailing
  247.  
  248. You can use the same data file from the letters to print the
  249. envelopes. However, you will need to create a different master
  250. document. Below is an example of such a document:
  251.  
  252.  
  253.     ┌──────────────────────────────────────────────────────────────┐
  254.     │.df names.dat                                                 │
  255.     │.rv name,greeting,address1,address2                           │
  256.     │.av "Put an envelope in the printer. Press enter when ready",X│
  257.     │.pl24                                                         │
  258.     │.mt12                                                         │
  259.     │.mb0                                                          │
  260.     │.po40                                                         │
  261.     │&name&                                                        │
  262.     │&address1&                                                    │
  263.     │&address2&                                                    │
  264.     │.pa                                                           │
  265.     └──────────────────────────────────────────────────────────────┘
  266.  
  267.  
  268. The dot commands select the data file, read the data, and interrupt
  269. printing so you can put in a new envelope. They also set up the format
  270. for a standard envelope as above.
  271.  
  272. The .AV tells word Fugue to puase during the merge printing and
  273. display the message in quotes. The X variable in the .AV command is
  274. used only because the .AV command requires a variable for the keyboard
  275. input. Using the .AV is realy only a trick to display a message and
  276. pause until you press Enter.
  277.  
  278. The next 4 dot commands set up the format for the envelope - the page
  279. length, top and bottom margins, and offset.
  280.  
  281. The address variables print the name and address from the data file.
  282. The .PA starts a new envelope.
  283.  
  284. .cp40
  285. .tc    Merge Printing Sticky Labels Three Across ..........#
  286. Merge Printing Sticky Labels Three Across
  287.  
  288. This example shows you how to set up a format for merge printing names
  289. and addresses on stick labels. The dot commands here assume standard
  290. 3½-inch by 1½-inch labels, printed at 10 characters per inch and 6
  291. lines per inch. Each label can therefore fit 35 characters.
  292.  
  293.  
  294.     ┌──────────────────────────────────────────────────────────────┐
  295.     │ .po 2                                                        │
  296.     │ .PL 9                                                        │
  297.     │ .mt 1                                                        │
  298.     │ .mb 1                                                        │
  299.     │ .df label.dat                                                │
  300.     │ .rv name1,address1,city1,state1,pc1                          │
  301.     │ .rv name2,address2,city2,state2,pc2                          │
  302.     │ .rv name3,address3,city3,state3,pc3                          │
  303.     │ .sv name1/L30=&name1&                                        │
  304.     │ .sv name2/L30=&name2&                                        │
  305.     │ .sv name3/L30=&name3&                                        │
  306.     │ .sv address1/L30=&address1&                                  │
  307.     │ .sv address2/L30=&address2&                                  │
  308.     │ .sv address3/L30=&address3&                                  │
  309.     │ .sv cityline1/L30=&city1&, &state1&, &pc1&                   │
  310.     │ .sv cityline2/L30=&city2&, &state2&, &pc2&                   │
  311.     │ .sv cityline3/L30=&city3&, &state3&, &pc3&                   │
  312.     │ &name1&     &name2&     &name3&                              │
  313.     │ &address1&     &address2&     &address3&                     │
  314.     │ &cityline1&     &cityline2&     &cityline3&                  │
  315.     │ .pa                                                          │
  316.     └──────────────────────────────────────────────────────────────┘
  317.  
  318.  
  319. Each row of labels is treated as a page, so the page length is set to
  320. 9 lines (6 lines per inch => 1½" = 9 lines). The date for each label
  321. is read in, and then formatted.
  322.  
  323. The .SV lines format each variable to a length of 30 characters, left
  324. justified. We could have defined formats for the variables City, State
  325. and PC, so that their combined length totaled 30 characters, but the
  326. method shown here of creating another variable is easier to work with.
  327.  
  328. There are 4 spaces between each variable reference in the print
  329. section. During merge printing, each variable is replaced with a
  330. field 30 characters wide. The five spaces between them add up to a
  331. combined width of 35 characters, which is the label width. The point
  332. of the .PO2 command is to ensure that the text does not start right on
  333. the edge of the label (which would look unsightly).
  334.  
  335. The .PL9 command also tells the printer the page length, so it does
  336. not matter whether you have form feeds on or not. However, if your
  337. printer does not have a control sequence for setting page length, you
  338. should turn off form feeds before printing (otherwise the printer will
  339. spit out 66 lines for each label!).
  340.  
  341.  
  342. Missing Data in Some Records
  343. .tc       Missing Data in Some Records ....................#
  344.  
  345. It may well be that in a row of labels, some may be missing the first
  346. line of the address. This is still a valid address, but can look
  347. unsightly. This is easily fixed by use of conditional dot commands.
  348. This example assumes that the mailing list consists of name, street
  349. address and city line, and that the street address is missing.
  350.  
  351. After Word Fugue has read all variables from the data file for a row
  352. of labels, it can check to see if any street addresses are missing.
  353. The method we will use is to place the name into the street line, and
  354. blank out the name:
  355.  
  356.  
  357.     ┌────────────────────────────────────────────────────┐
  358.     │    .IF &ADDRESS1&=                                 │
  359.     │    .SV ADDRESS1=&NAME1&                            │
  360.     │    .SV NAME1/L30=                                  │
  361.     │    .EI                                             │
  362.     │    .IF &ADDRESS2&=                                 │
  363.     │    .SV ADDRESS2=&NAME2&                            │
  364.     │    .SV NAME2/L30=                                  │
  365.     │    .EI                                             │
  366.     │    .IF &ADDRESS3&=                                 │
  367.     │    .SV ADDRESS3=&NAME3&                            │
  368.     │    .SV NAME3/L30=                                  │
  369.     │    .EI                                             │
  370.     └────────────────────────────────────────────────────┘
  371.  
  372.  
  373. You  can modify this basic procedure to cater for other situations
  374. where data could be missing.
  375.  
  376. .tc    Merging and Centering a Variable in a Page .........#
  377. Merging and Centering a Variable in a Page
  378.  
  379. To centre a variable in a document page, simply use the .SV command,
  380. and specify the format as /C for centred, with the width the same as
  381. the ruler line.
  382.  
  383.         .RV name
  384.         .SV name/C70=&name&
  385.  
  386. will define name as 70 characters wide (the same as the ruler line),
  387. and centre the value read. Simply place the variable at the left
  388. margin of your document, and the text will be centred on the page.
  389.  
  390. .tc    Maths, Formatting and Conditionals in Merging ......#
  391. Maths, Formatting and Conditionals in Merging
  392.  
  393. The example on the next page shows how to set up a more complicated
  394. document, which is only printed if the customer spent a total of more
  395. than $40 during the last month, on at least 4 different items. A
  396. special discount is offered, 5% for those who spent less than $400,
  397. and 10% for those who spent more.
  398.  
  399. .pa
  400.         .df names.dat
  401.         .rv first,last,street,city,state,postcode
  402.         .rv item1,price1,item2,price2,item3,price3,item4,price4
  403. A       .ma total$=&price1&+&price2&+&price3&+&price4&
  404. B       .sv total/R10=&total&
  405. C ────┬ .sv item1/L25=&item1&
  406.       │ .sv item2/L25=&item2&
  407.       │ .sv item3/L25=&item3&
  408.       └ .sv item4/L25=&item4&
  409. D ────┬ .sv price1/R17=&price1&
  410.       │ .sv price2/R17=&price2&
  411.       │ .sv price3/R17=&price3&
  412.       └ .sv price4/R17=&price4&
  413. E  ┌─── .if &total& >= 40.00
  414. F ─│────────────────────                {.@D8}
  415.    │    Nurk's Special Supplies
  416.    │    Erehwon
  417.    │
  418.    │    &First& &Last&
  419. G ─│─┌─ .if &street&
  420.    │ │  &street&
  421.    │ └─ .ei
  422.    │    &city& &state& &pastcode&
  423.    │
  424.    │    Dear &First&
  425.    │
  426.    │    Our records show that you have bought four or more items from
  427.    │    us in the last month.......
  428.    │    ... we are offering you the following discount on your next
  429.    │    purchase:
  430.    │
  431. H ─│─┌─ .if &total& < 400.00
  432.    │ │                  five percent
  433.    │ ├  .el
  434.    │ │                  ten percent
  435.    │ └─ .ei
  436.    │
  437. I ─│─┌─ .if &item2&
  438.    │ │  Here list a list of your last purchases
  439.    │ ├  .el
  440.    │ │  Here is your last purchase
  441.    │ └─ .ei
  442.    │
  443. J ─│──┬         &item1&&price1&
  444.    │  │         &item2&&price2&
  445.    │  │         &item3&&price3&
  446.    │  └         &item4&&price4&
  447.    │
  448.    │            Total                           &total&
  449.    │
  450.    │    sincerely
  451.    │
  452.    │    Fred Nurk
  453.    │    .pa
  454.    └─── .ei
  455.  
  456.   Explanation
  457.  
  458.   At A, the total is calculated from the four prices read in, and is
  459.   formated as 2 decimal places (the $ at the end of total does this).
  460.  
  461.   Line B formats the total to be 10 characters wide, right justified.
  462.  
  463.   Lines C format the item descriptions to be 25 characters wide, left
  464.   justified.
  465.  
  466.   Lines D format the prices to be 17 characters wide, right justified.
  467.  
  468.   Line E checks that the total expenditure is greater than or equal to
  469.   40. If it is less, the entire letter is skipped down to the matching
  470.   .EI, which means that nothing prints.
  471.  
  472.   Line F inserts todays date in the format dd month yyyy.
  473.  
  474.   Lines marked G test if the variable street contains a value, and
  475.   prints it if it does. If the variable is blank, the line is omitted.
  476.  
  477.   The lines labeled H print the words five percent if the total is
  478.   less than 400, and print the words ten percent otherwise.
  479.  
  480.   The lines marked with I test if there is a second item, and print
  481.   the words here is a list of your last purchases if there is a second
  482.   item, but print the words Here is your last purchase if there is
  483.   not a second item.
  484.  
  485.   The lines J porint a list of items, they have already been
  486.   formatted, so there is no need for spaces between the variable
  487.   names, the formatting takes care of that. The first ampersand (&) of
  488.   the total is in the column so that it will line up with the other
  489.   prices when they print.
  490.  
  491.   NOTE if you need to omit variables from your datafile, place a blank
  492.        and follow it by a comma (,). Each .RV command only reads
  493.        variables from one line of the file
  494.  
  495. .tc    Advanced Mathematics in Merge Printing .............#
  496. Advanced Mathematics in Merge Printing
  497.  
  498. All of the functions of Word Fugue's pop up calculator are available
  499. for the .MA command. You can do complicated trigometric functions and
  500. so on. For example to calculate loan payments from the amount
  501. borrowed, interest rate and term of loan is:
  502.  
  503.        P = A * i * (i + 1)n/((i+1)n-1)
  504.  
  505. where P is the amount of each payment
  506.       A is the amount borrowed
  507.       i is the interest rate per payment interval. If the payment
  508.         interval is monthly, divide i by 12. i must be converted from
  509.         a percentage to a decimal fraction - 12% = 0.12, and on
  510.         monthly payments = 0.01
  511.       n is the total number of payments. For example monthly payments
  512.         over 4 years total 48 payments
  513.  
  514. This equation can be expressed in a .MA commands below. The actual
  515. equation is on one line only - since Word Fugue's maximum line length
  516. is 999 characters, you should be able to express the most complicated
  517. equation on one line. If you cannot, break it up into parts, calculate
  518. intermediate values, and then combine the intermediate values.
  519.  
  520.       ┌────────────────────────────────────────────┐
  521.       │ .. calculate monthly interest as decimal   │
  522.       │ .MA i=&interest&/1200                      │
  523.       │ .. calculate payment P                     │
  524.       │ .MA P$=&A&*&i&*(&i&+1)^&n&/((&i&+1)^&n&-1) │
  525.       └────────────────────────────────────────────┘
  526.  
  527. The hat sign (^) is used for raising the first number to the power of
  528. the second, thus 2 squared (22) is 2^2, and 2 cubed (23) is 2^3. The
  529. variable interest is read in as a percentage and then divided by 1200
  530. to convert it to a decimal rate per month. It is more efficient to
  531. calculate i once and refer to it in the second equation than to
  532. calculate it each time it is referenced (3 times), and probably less
  533. confusing too. The payment figure is truncated to 2 decimal places for
  534. printing as a Dollar amount. Without this, Word Fugue might print the
  535. payment figure as a 14 digit decimal number, depending on just how
  536. many decimal places the exponentiation (raising to the nth power)
  537. produced.
  538.  
  539. .tc    Creating a Lookup Table for Merge Printing .........#
  540. Creating a Lookup Table for Merge Printing
  541.  
  542. There can be times when, for example, you want to print different
  543. messages for different categories of people. Either you do not want to
  544. type the same message in over and over again, or you want to use a
  545. standard mailing list several times for several different sets of
  546. messages.
  547.  
  548. You could read in the customer type, and use conditionals (.IF .EL
  549. .EI) to determine the message to be printed, but there is another
  550. method, using what is known as recurrsion:
  551.  
  552. In your sample data file there are 3 records:
  553.  
  554.        ┌───────────────────────────────────┐
  555.        │Fred Nurk,&prize1&                 │
  556.        │Susan Soo,&prize2&                 │
  557.        │Sally Zed,&Prize2&                 │
  558.        └───────────────────────────────────┘
  559.  
  560. .CP16
  561. The form letter looks like this:
  562.  
  563.        ┌──────────────────────────────────────────────┐
  564.        │.sv prize1=A new car                          │
  565.        │.sv prize2=A trip to New Zealand for 2        │
  566.        │.df data.dat                                  │
  567.        │.rv name,prize                                │
  568.        │Dear &name&                                   │
  569.        │                                              │
  570.        │Your prize is &prize&                         │
  571.        │                                              │
  572.        │sincerely yours                               │
  573.        │prize coordinator                             │
  574.        │.pa                                           │
  575.        │                                              │
  576.        └──────────────────────────────────────────────┘
  577.  
  578. When the variable prize is read from the data file, it will contain
  579. either "&prize1&" or "&prize2&". When it is printed, it will be
  580. replaced with the characters it contains, and since they have been
  581. defined as variables themselves, they in turn will be replaced with "A
  582. new car" and "A trip to New Zealand for 2" respectively.
  583.  
  584. .tc    Proof Reading Your Printouts Before Merge Printing .#
  585. Proof Reading Your Printouts Before Merge Printing
  586.  
  587. Keep in mind that when merging documents with data files, everything
  588. has to be correct. Take your time to spell check your documents, proof
  589. read them carefully. In addition, you should try out the different
  590. combinations (especially if you are using conditionals) by using a
  591. sample data file before the real thing.
  592.  
  593. You can either run this to paper, or print it to disk and review the
  594. output using Word Fugue. If your document is large, you could make an
  595. exact copy of it, and working on the copy, delete most of the text,
  596. leaving just enough to identify the various conditions and so on. Run
  597. this with your sample data file to see how things work.
  598.  
  599. This approach is ideal for developing a merge print document - work
  600. out the commands you need to use, and test them with a sample data
  601. file, then when you have fixed any errors in the commands, flesh out
  602. the document with the real text, and print it again with the sample
  603. data file. Be sure to try each of the different combination so that
  604. you know you won't have funny merged documents in some situations.
  605. Only when you are sure that everything is right should you run the
  606. real print.
  607.  
  608. .cp15
  609. .tc    Working with Books and Chapters ....................#
  610. Working with Books and Chapters
  611.  
  612. For convenience, you should break a long document such as a book or a
  613. research paper down into sections or chapters. Each chapter should be
  614. set up as a separate file. To simplify printing, generation of table
  615. of contents and indexes, you should create a Master Document that
  616. includes each chapter using a .FI command. With the master document
  617. loaded into Word Fugue, you can easily open a chapter by placing the
  618. cursor on the appropriate .FI line and pressing Ctrl F to load the
  619. chapter into a separate window.
  620.  
  621. If you inspect the compressed document file that came with your copy
  622. of Word Fugue, you will find that it contains an earlier version of
  623. the manual you are reading. The master document is WF.DOC, and all the
  624. chapters are WF.nnn, where nnn is a number. The table of contents is
  625. WF.TOC. The table of contents is generated by specifying WF.DOC as the
  626. file to process, and each chapter is included as needed by the .FI
  627. command.
  628.  
  629. Below is a section of the master document:
  630.  
  631.          ┌──────────────────────────────────────────────────────┐
  632. A ─────┬─│.po O 12                                              │
  633.        └─│.po E 8                                               │
  634.          │                                                      │
  635.          │               Word Fugue                             │
  636.          │                                                      │
  637.          │               User's Guide                           │
  638.          │                                                      │
  639.          │.pa                                                   │
  640. B ─────┬─│.f1                                                   │
  641.        ├─│.f2 ──────────────────────────────────────────────────│
  642.        └─│.f3                                 - # -             │
  643. C ─────┬─│.pn1                                                  │
  644.        └─│.pt r                                                 │
  645. D ───────│.fiwf.toc                                             │
  646.        ┌─│.pa                                                   │
  647. E ─────┼─│.H1                      WORD FUGUE USERS GUIDE       │
  648.        ├─│.h2 ──────────────────────────────────────────────────│
  649.        └─│.H3                                                   │
  650. F ─────┬─│.pn1                                                  │
  651.        └─│.pt n                                                 │
  652. G ─────┬─│.fiwf.001                                             │
  653. H ──┬──│─│.pbo                                                  │
  654.     │  ├─│.fiwf.002                                             │
  655.     ├──│─│.pbo                                                  │
  656.     │  ├─│.fiwf.003                                             │
  657.     ├──│─│.pbo                                                  │
  658.     │  └─│.fiwf.004                                             │
  659.     ├────│.pbo                                                  │
  660.          └──────────────────────────────────────────────────────┘
  661.  
  662.  
  663. .cp7
  664. A - The page offset for even numbered pages is set to 8 characters,
  665.     while that for odd numbered pages is set to 12 characters. This is
  666.     to allow for the binding, since the book will eventually be
  667.     printed double sided, with the left hand pages bearing even
  668.     numbers, and the right hand pages bearing odd numbers.
  669.  
  670. B   A three line footer is created, with the page number as the lowest
  671.     line.
  672.  
  673. C   The page number is reset to 1 via the .PN 1 line, while the type
  674.     of the page number is set to lower case roman numerals via the
  675.     .PTr command.
  676.  
  677. D   The table of contents is included.
  678.  
  679. E   A new page is started, and a heading is set up for the entire
  680.     document.
  681.  
  682. F   The page number is reset to 1, and the number type is changed to
  683.     ordinary numbers via the .PT n command. Failure to reset the page
  684.     number to 1 will result in the first page being numbered 4 or 5 as
  685.     it follows the table of contents.
  686.  
  687. G   These lines include the first 4 chapters of the manual.
  688.  
  689. H   These lines ensure that each new chapter starts on an ODD numbered
  690.     page. If the next page is even numbered, a blank page will be
  691.     printed to force the text onto an odd numbered page.
  692.  
  693. There are many more commands in the real master document, and it is
  694. suggested that you inspect the sample documents to see how everything
  695. is done.
  696.  
  697. Headings in your Table of Contents
  698.  
  699. Since the table of contents is generated each time, and headings etc
  700. need to be placed into the table of contents when it is generated.
  701. This can be accomplished by prefixing the dot commands by .TC, since
  702. the text that follows the dot command is copied literally into the
  703. table of contents file.
  704.  
  705. For example, the following commands in a document:
  706.  
  707.        ┌───────────────────────────────────────┐
  708.        │.TC.HE   TABLE OF CONTENTS             │
  709.        │.TC.FO       - # -                     │
  710.        │.TC.PT r                               │
  711.        │.TC CHAPTER 1 ...................#     │
  712.        │.tc    sub heading 1 ............#     │
  713.        │.tc    sub heading 2 ............#     │
  714.        │.tc                                    │
  715.        │.tc CHAPTER 2 ...................#     │
  716.        └───────────────────────────────────────┘
  717.  
  718. .cp17
  719. will produce a table of contents file (.TOC) containing:
  720.  
  721.        ┌───────────────────────────────────────┐
  722.        │.HE   TABLE OF CONTENTS                │
  723.        │.FO       - # -                        │
  724.        │.PT r                                  │
  725.        │ CHAPTER 1 ...................1        │
  726.        │    sub heading 1 ............1        │
  727.        │    sub heading 2 ............2        │
  728.        │                                       │
  729.        │ CHAPTER 2 ...................4        │
  730.        └───────────────────────────────────────┘
  731.  
  732. A blank line can be produced by typing a .TC command with no text
  733. following.
  734.